home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Itch / loading.dcr / 00002_StartStuff.ls next >
Encoding:
Text File  |  1999-03-07  |  161 b   |  13 lines

  1. global worldObj
  2.  
  3. on startMovie
  4.   clearGlobals()
  5.   cursor(200)
  6.   InitStuff()
  7. end
  8.  
  9. on InitStuff
  10.   worldObj = new(script("World Parent"))
  11.   initWorld(worldObj)
  12. end
  13.